common: usb: fix checking condition
authorPeng Fan <[email protected]>
Tue, 12 Jan 2016 07:57:01 +0000 (15:57 +0800)
committerMarek Vasut <[email protected]>
Sat, 16 Jan 2016 06:06:55 +0000 (07:06 +0100)
commit447b9cdf2c4d8d7c6cb1ff64426c1dfaf7396f93
treeebd5fba4a4c40637f72a18cfab100a1d259566b3
parent08c11cb5df8c75c79b165e19531040cc36036252
common: usb: fix checking condition

We support max USB_MAXENDPOINTS, so need to use
"epno >= USB_MAXENDPOINTS", but not "epno > USB_MAXENDPOINTS".
If use ">", we may exceeds the array of if_desc->ep_desc.

Signed-off-by: Peng Fan <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Hans de Goede <[email protected]>
Cc: Marek Vasut <[email protected]>
Cc: Paul Kocialkowski <[email protected]>
Cc: "Stefan BrĂ¼ns" <[email protected]>
Cc: Vincent Palatin <[email protected]>
common/usb.c